{% extends "base.html" %} {% block content %}
| # | Quiz Title | Score | Max Score | Percentage | Started | Finished | Status | Action |
|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ attempt.quiz.title }} | {{ attempt.score }} | {{ attempt.max_score }} | {% if attempt.max_score %} {{ attempt.score|divisibleby:attempt.max_score|floatformat:2 }}% {% else %} N/A {% endif %} | {{ attempt.started_at|date:"M d, Y H:i" }} | {% if attempt.finished_at %} {{ attempt.finished_at|date:"M d, Y H:i" }} {% else %} In Progress {% endif %} | {% if attempt.finished_at %} Completed {% else %} Ongoing {% endif %} | {% if attempt.finished_at %} View Details {% else %} -- {% endif %} |